2005-09-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktexttag.c (gtk_text_attributes_ref): Return the attributes
to make this function work as boxed copy function. (#317455,
Gustavo Carneiro)
2005-09-28 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtktexttag.c (gtk_text_attributes_ref): Return the attributes
+ to make this function work as boxed copy function. (#317455,
+ Gustavo Carneiro)
+
* gtk/gtkclipboard.c (request_image_received_func): Don't unref
NULL. (#316828, Tor Lillqvist)
2005-09-28 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtktexttag.c (gtk_text_attributes_ref): Return the attributes
+ to make this function work as boxed copy function. (#317455,
+ Gustavo Carneiro)
+
* gtk/gtkclipboard.c (request_image_received_func): Don't unref
NULL. (#316828, Tor Lillqvist)
* @values: a #GtkTextAttributes
*
* Increments the reference count on @values.
+ *
+ * Returns: the #GtkTextAttributes that were passed in
**/
void
gtk_text_attributes_ref (GtkTextAttributes *values)
g_return_if_fail (values != NULL);
values->refcount += 1;
+
+ return values;
}
/**